Stored Procedures
NOTE: The .NET Client attaches the provider-specific prefix "SequeLink" to the names of the public objects, for example, SequeLinkConnection or SequeLinkCommand.
To enable stored procedures in the application, do the following:
- Set the CommandText property in the SequeLinkCommand object to the stored procedure name.
- Set the CommandType property in the SequeLinkCommand object to StoredProcedure.
- Specify parameter arguments, if needed. The application should Add the parameters to the parameter collection of the SequeLinkCommand object in the order of the arguments to the stored procedure. The application does not need to specify the parameter markers in the CommandText property of the SequeLinkCommand object.
To retrieve the return value from a stored procedure, the application should add an extra parameter to the parameter collection for the SequeLinkCommand object. This parameter's ParameterDirection property should be set to ParameterDirection.ReturnValue. The return value parameter can be anywhere in the parameter collection because it does not correspond to a specific parameter marker in the Text property of the SequeLinkCommand object.
If the stored procedure does not produce a return value, parameters bound with the ParameterDirection.ReturnValue property are ignored.
If the stored procedure returns a ReturnValue from the database and the application has not bound a parameter for it, the data provider discards the value.